home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zrop.c < prev    next >
C/C++ Source or Header  |  1996-06-14  |  3KB  |  119 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zrop.c */
  20. /* RasterOp control operators */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "gsrop.h"
  26. #include "gsutil.h"
  27. #include "gxdevice.h"
  28. #include "idict.h"
  29. #include "idparam.h"
  30. #include "igstate.h"
  31. #include "store.h"
  32.  
  33. /* <int8> .setrasterop - */
  34. private int
  35. zsetrasterop(register os_ptr op)
  36. {    int param;
  37.     int code = int_param(op, 0xff, ¶m);
  38.     if ( code < 0 )
  39.       return code;
  40.     gs_setrasterop(igs, (gs_rop3_t)param);
  41.     pop(1);
  42.     return 0;
  43. }
  44.  
  45. /* - .currentrasterop <int8> */
  46. private int
  47. zcurrentrasterop(register os_ptr op)
  48. {    push(1);
  49.     make_int(op, (int)gs_currentrasterop(igs));
  50.     return 0;
  51. }
  52.  
  53. /* <int> .setrenderalgorithm - */
  54. private int
  55. zsetrenderalgorithm(register os_ptr op)
  56. {    int param;
  57.     int code = int_param(op, render_algorithm_max, ¶m);
  58.     if ( code < 0 )
  59.       return code;
  60.     gs_setrenderalgorithm(igs, param);
  61.     pop(1);
  62.     return 0;
  63. }
  64.  
  65. /* - .currentrenderalgorithm <int> */
  66. private int
  67. zcurrentrenderalgorithm(register os_ptr op)
  68. {    push(1);
  69.     make_int(op, gs_currentrenderalgorithm(igs));
  70.     return 0;
  71. }
  72.     
  73. /* <bool> .setsourcetransparent - */
  74. private int
  75. zsetsourcetransparent(register os_ptr op)
  76. {    check_type(*op, t_boolean);
  77.     gs_setsourcetransparent(igs, op->value.boolval);
  78.     pop(1);
  79.     return 0;
  80. }
  81.  
  82. /* - .currentsourcetransparent <bool> */
  83. private int
  84. zcurrentsourcetransparent(register os_ptr op)
  85. {    push(1);
  86.     make_bool(op, gs_currentsourcetransparent(igs));
  87.     return 0;
  88. }
  89.     
  90. /* <bool> .settexturetransparent - */
  91. private int
  92. zsettexturetransparent(register os_ptr op)
  93. {    check_type(*op, t_boolean);
  94.     gs_settexturetransparent(igs, op->value.boolval);
  95.     pop(1);
  96.     return 0;
  97. }
  98.  
  99. /* - .currenttexturetransparent <bool> */
  100. private int
  101. zcurrenttexturetransparent(register os_ptr op)
  102. {    push(1);
  103.     make_bool(op, gs_currenttexturetransparent(igs));
  104.     return 0;
  105. }
  106.  
  107. /* ------ Initialization procedure ------ */
  108.  
  109. BEGIN_OP_DEFS(zrop_op_defs) {
  110.     {"0.currentrasterop", zcurrentrasterop},
  111.     {"0.currentrenderalgorithm", zcurrentrenderalgorithm},
  112.     {"0.currentsourcetransparent", zcurrentsourcetransparent},
  113.     {"0.currenttexturetransparent", zcurrenttexturetransparent},
  114.     {"1.setrasterop", zsetrasterop},
  115.     {"1.setrenderalgorithm", zsetrenderalgorithm},
  116.     {"1.setsourcetransparent", zsetsourcetransparent},
  117.     {"1.settexturetransparent", zsettexturetransparent},
  118. END_OP_DEFS(0) }
  119.